ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / ShowColumnFooters Property






In This Topic
    ShowColumnFooters Property (FlexGridBase<T>)
    In This Topic
    Gets or sets a bool value which indicates whether to show a group row to display the aggregates in the column footers panel.
    Syntax
    'Declaration
     
    
    Public Overridable Property ShowColumnFooters As System.Boolean
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.Boolean
     
    instance.ShowColumnFooters = value
     
    value = instance.ShowColumnFooters
    public virtual System.bool ShowColumnFooters {get; set;}
    public read-write property ShowColumnFooters: System.Boolean; virtual; 
    public function get,set ShowColumnFooters : System.boolean
    public: __property virtual System.bool get_ShowColumnFooters();
    public: __property virtual void set_ShowColumnFooters( 
       System.bool value
    );
    public:
    virtual property System.bool ShowColumnFooters {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks
    The aggregated values in the column footers only work when the DisableServerRead property of its ItemsSource is true.
    See Also